home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950929-19951130 / 000401_news@columbia.edu_Thu Nov 16 19:19:28 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00652
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun>); Thu, 16 Nov 1995 14:19:39 -0500
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.6.12/8.6.12) id OAA14284 for kermit.misc@watsun; Thu, 16 Nov 1995 14:19:35 -0500
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: extended ASCII characters
  8. Date: 16 Nov 1995 19:19:28 GMT
  9. Organization: Columbia University
  10. Lines: 42
  11. Message-Id: <48g2s0$du7@apakabar.cc.columbia.edu>
  12. References: <48fjt3$3ct@milo.freenet.vancouver.bc.ca>
  13. Nntp-Posting-Host: watsun.cc.columbia.edu
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <48fjt3$3ct@milo.freenet.vancouver.bc.ca>,
  17. David Stow <dastow@opus.freenet.vancouver.bc.ca> wrote:
  18. : Could anyone tell me how to make the termainal emulator display 
  19. : characters 128-256 of the ISO Latin 1 set?  I've set the display to 8-bit 
  20. : and terminal character-set to Latin-1 but I still see only the ASCII 
  21. : characters that correspond to (number of the character I expect) - 128 on 
  22. : my screen.  (For example, I get "i" where I would expect "e" with an 
  23. : acute accent.)
  24. So then this must be MS-DOS Kermit, right?  What version?  The current
  25. version is 3.14.
  26.  
  27. Proper display of many different character sets is an integral feature of
  28. MS-DOS Kermit.  The mechanics are explained in detail in Chapter 13 of
  29. the manual, "Using MS-DOS Kermit".
  30.  
  31. Is Kermit's PARITY set to NONE?
  32.  
  33. Assuming it is, then it sounds like you have set up Kermit correctly
  34. (check with SHOW TERMINAL), so I expect that the host is simply not
  35. sending all 8 bits.  It is likely that you need to give a command at the
  36. host to make it stop chopping off the 8th bit.  The exact format of the
  37. command would depend on the host.  In SunOS it would be "stty pass8".  In
  38. VMS, "set terminal/eight", and so on.  If you are going through a terminal
  39. server, it too might need some command for 8-bit transparency.
  40.  
  41. : When I look at files I've transfered with the type command, I see the
  42. : IBM graphics character for the character number I expected (in the
  43. : 128-256 range).  I'm using the VT102 emulation on an XT computer.
  44. :
  45. How do you mean "transfered with the type command"?  You mean you used
  46. LOG SESSION on the PC to capture a file that you typed on the host?
  47. This raises two questions:
  48.  
  49.  1. Why not use Kermit protocol to transfer the file?  This will handle
  50.     the character-set conversion for you.
  51.  
  52.  2. Why do you get 8-bit characters in your log file if you don't see them
  53.     on your screen?  This one is a puzzle, and I can't offer any hints
  54.     without a more detailed report.
  55.  
  56. - Frank